刪除文件資料與更新資料非常像,概念都是有篩選條件若有滿足篩選條件者,就會被刪除
刪除符合條件的一筆文件資料
集合.delete_one(篩選條件)
collection=db.website
collection.delete_one({
"email":"test@test.com"
})
刪除所有符合篩選的文件都會被刪除
集合.delete_many(篩選條件)
collection=db.website
collection.delete_many({
"level":1
})
collection=db.website
collection.delete_one({
"email":"test@test.com"
})
print(result.deleted_count)
collection=db.website
collection.delete_many({
"level":1
})
print(result.deleted_count)